projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9be8b2b
)
; Small comment fix
author
Philipp Stephani
<phst@google.com>
Sun, 4 Jun 2017 17:15:20 +0000
(19:15 +0200)
committer
Philipp Stephani
<phst@google.com>
Sun, 4 Jun 2017 17:50:50 +0000
(19:50 +0200)
* emacs-module.c (MODULE_FUNCTION_BEGIN): Don't say that the error
value should be a sentinel value, because in almost all cases it
isn't.
src/emacs-module.c
patch
|
blob
|
history
diff --git
a/src/emacs-module.c
b/src/emacs-module.c
index c276edab37b1d8233a3546a020a7d9361abca45e..7f5bd86c96bff8051f041c1df9747b02fdb15b35 100644
(file)
--- a/
src/emacs-module.c
+++ b/
src/emacs-module.c
@@
-226,7
+226,7
@@
static emacs_value const module_nil = 0;
/* Use MODULE_FUNCTION_BEGIN to implement steps 2 through 4 for most
environment functions. On error it will return its argument, which
-
should
be a sentinel value. */
+
can
be a sentinel value. */
#define MODULE_FUNCTION_BEGIN(error_retval) \
MODULE_FUNCTION_BEGIN_NO_CATCH (error_retval); \